home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 68K / Mac / scripts / MkPluginAliases.py < prev    next >
Text File  |  1996-05-20  |  4KB  |  138 lines

  1. # This python script creates Finder aliases for all the
  2. # dynamically-loaded modules that "live in" in a single
  3. # shared library.
  4. # It needs a fully functional non-dynamic python to work
  5. # (since it creates aliases to stuff it needs itself),
  6. # you should probably drag it onto your non-dynamic python.
  7. # If you compare it to MkPluginAliases.as it also serves
  8. # as a comparison between python and AppleScript:-)
  9. #
  10. # Jack Jansen, CWI, August 1995
  11.  
  12. import sys
  13.  
  14. def help():
  15.     print"""
  16. Try the following:
  17. 1. Remove any old "Python Preferences" files from the system folder.
  18. 2. Remove any old "PythonCore" files from the system folder.
  19. 3. Make sure this script, PythonPPC and PythonCore are all located in the
  20.    python home folder (where the Lib and PlugIns folders are)
  21. 4. Run this script again, by dropping it on PythonPPC.
  22.  
  23. If this fails try removing starting afresh from the distribution archive.
  24. """
  25.     sys.exit(1)
  26.     
  27. try:
  28.     import os
  29. except ImportError:
  30.     print """
  31. I cannot import the 'os' module, so something is wrong with sys.path
  32. """
  33.     help()
  34.     
  35. try:
  36.     import Res
  37. except ImportError:
  38.     #
  39.     # Check that we are actually in the main python directory
  40.     #
  41.     try:
  42.         os.chdir(':PlugIns')
  43.     except IOError:
  44.         print """
  45. I cannot find the 'PlugIns' folder, so I am obviously not run from the Python
  46. home folder.
  47. """
  48.         help()
  49.     import imp
  50.     cwd = os.getcwd()
  51.     tblibname = os.path.join(cwd, "toolboxmodules.slb")
  52.     if not os.path.exists(tblibname):
  53.         print """
  54. I cannot find the 'toolboxmodules.slb' file in the PlugIns directory.
  55. Start afresh from a clean distribution. 
  56. """
  57.         sys.exit(1)
  58.     try:
  59.         for wtd in ["Ctl", "Dlg", "Evt", "Qd", "Res", "Win"]:
  60.             imp.load_dynamic(wtd, tblibname)
  61.     except ImportError:
  62.         print """
  63. I cannot load the toolbox modules by hand. Are you sure you are
  64. using a PowerPC mac?
  65. """
  66.         sys.exit(1)
  67.         
  68.  
  69. import macfs
  70. import EasyDialogs
  71. import macostools
  72.  
  73. goals = [
  74.     ("mactcp.slb", "mactcpmodules.slb"),
  75.     ("macdnr.slb", "mactcpmodules.slb"),
  76.     ("AE.slb", "toolboxmodules.slb"),
  77.     ("Cm.slb", "toolboxmodules.slb"),
  78.     ("Ctl.slb", "toolboxmodules.slb"),
  79.     ("Dlg.slb", "toolboxmodules.slb"),
  80.     ("Evt.slb", "toolboxmodules.slb"),
  81.     ("Fm.slb", "toolboxmodules.slb"),
  82.     ("Menu.slb", "toolboxmodules.slb"),
  83.     ("List.slb", "toolboxmodules.slb"),
  84.     ("Qd.slb", "toolboxmodules.slb"),
  85.     ("Qt.slb", "toolboxmodules.slb"),
  86.     ("Res.slb", "toolboxmodules.slb"),
  87.     ("Scrap.slb", "toolboxmodules.slb"),
  88.     ("Snd.slb", "toolboxmodules.slb"),
  89.     ("TE.slb", "toolboxmodules.slb"),
  90.     ("Win.slb", "toolboxmodules.slb"),
  91.     ("imgcolormap.slb", "imgmodules.slb"),
  92.     ("imgformat.slb", "imgmodules.slb"),
  93.     ("imggif.slb", "imgmodules.slb"),
  94.     ("imgjpeg.slb", "imgmodules.slb"),
  95.     ("imgop.slb", "imgmodules.slb"),
  96.     ("imgpbm.slb", "imgmodules.slb"),
  97.     ("imgpgm.slb", "imgmodules.slb"),
  98.     ("imgppm.slb", "imgmodules.slb"),
  99.     ("imgtiff.slb", "imgmodules.slb"),
  100.     ("imgsgi.slb", "imgmodules.slb")
  101. ]
  102.  
  103.  
  104. def main():
  105.     # Ask the user for the plugins directory
  106.     dir, ok = macfs.GetDirectory('Where is the PlugIns folder?')
  107.     if not ok: sys.exit(0)
  108.     os.chdir(dir.as_pathname())
  109.     
  110.     # Remove old .slb aliases and collect a list of .slb files
  111.     if EasyDialogs.AskYesNoCancel('Proceed with removing old aliases?') <= 0:
  112.         sys.exit(0)
  113.     LibFiles = []
  114.     allfiles = os.listdir(':')
  115.     for f in allfiles:
  116.         if f[-4:] == '.slb':
  117.             finfo = macfs.FSSpec(f).GetFInfo()
  118.             if finfo.Flags & 0x8000:
  119.                 os.unlink(f)
  120.             else:
  121.                 LibFiles.append(f)
  122.     
  123.     print LibFiles
  124.     # Create the new aliases.
  125.     if EasyDialogs.AskYesNoCancel('Proceed with creating new ones?') <= 0:
  126.         sys.exit(0)
  127.     for dst, src in goals:
  128.         if src in LibFiles:
  129.             macostools.mkalias(src, dst)
  130.         else:
  131.             EasyDialogs.Message(dst+' not created: '+src+' not found')
  132.             
  133.     EasyDialogs.Message('All done!')
  134.             
  135. if __name__ == '__main__':
  136.     main()
  137.